home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Tools / Win95 Secrets / SETUP.Z / W32SPASM.ASM < prev    next >
Encoding:
Assembly Source File  |  1995-07-19  |  452 b   |  25 lines

  1. ;==================================
  2. ; W32SVSPY - Matt Pietrek 1995
  3. ; FILE: W32SPASM.ASM
  4. ;==================================
  5. .386
  6. .model flat
  7.  
  8. extrn   _lpfnOriginalVxDCall:fword
  9. extrn   _LogVxDCall@8:proc
  10.  
  11. .code
  12.  
  13. public _NewVxDCall_entry
  14. _NewVxDCall_entry proc
  15.     pushad
  16.     push    eax
  17.     lea     eax, [esp+36]
  18.     push    eax
  19.     call    _LogVxDCall@8
  20.     popad
  21.     jmp     [_lpfnOriginalVxDCall]
  22. _NewVxDCall_entry endp
  23.  
  24. end
  25.